macro expansion - перевод на Английский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

macro expansion - перевод на Английский

PREPROCESSING RULE IN COMPUTER LANGUAGES THAT SPECIFIES HOW AN INPUT TEXT USUALLY IDENTIFIED BY A DEFINABLE KEYWORD OR SEQUENCE IS MAPPED TO A FREQUENTLY LARGER OUTPUT TEXT
Macro language; Macro programming languages; Macro (programming); Parameterized macro; Macro substitution; Software macro; Macroinstruction; Macro instruction; Lisp macro; Macroing; Macro programming language; Macro expansion; Macro-instruction; Lisp macros; Macro programming; Syntactic macro; Procedural macros; Keyboard macro; Mouse macro; Mouse recorder; Open subroutine; Text substitution macros; Soft macro; Hard macro
  • jEdit's]] macro editor
Найдено результатов: 437
macro expansion         

общая лексика

макрорасширение

результат компиляции используемой в программе макрокоманды (макрогенерации) - подставляемый ассемблером или компилятором вместо вызова макрокоманды (макровызова) текст

Смотрите также

macro call; macro definition; macro generation; macro substitution

macro instruction         

общая лексика

макрокоманда

macro substitution         

общая лексика

макроподстановка, макрогенерация

процесс замены макрокоманды в исходном тексте соответствующим ей макрорасширением

Смотрите также

macro call; macro expansion; macro generator; source code

macroinstruction         

вычислительная техника

макрокоманда

макроопределение

expanding universe         
  • metric]] seen on the left. This visualization can be confusing because it appears as if the universe is expanding into a pre-existing empty space over time. Instead, the expansion created, and continues to create, all of known space and time.
  • critical density]] (<math>\Omega_m</math>).
  • Animation of an expanding raisin bread model. As the bread doubles in width (depth and length), the distances between raisins also double.
  • When an object is receding, its light gets stretched ([[redshift]]ed). When the object is approaching, its light gets compressed ([[blueshift]]ed).
  • The diagram depicts the expansion of the universe and the relative observer phenomenon. The blue galaxies have expanded further apart than the white galaxies. When choosing an arbitrary reference point such as the gold galaxy or the red galaxy, the increased distance to other galaxies the further away they are appear the same. This phenomenon of expansion indicates two factors: there is no centralized point in the universe, and that the Milky Way Galaxy is not the center of the universe. The appearance of centrality is due to an observer bias that is equivalent no matter what location an observer sits.
INCREASE IN DISTANCE BETWEEN PARTS OF THE UNIVERSE OVER TIME
Expansion of space; Expanding universe; Expanding Universe; Universe expansion; Expansion of the Universe; Cosmic expansion; Metric expansion; Space expansion; Expansion of space in the Big Bang theory; Metric expansion of the universe; Universe's expansion; The Big Bang and The Great Expansion; Metric impansion of space; Quantum radiation; Cosmological expansion; Expansion of universe; Metric expansion of space
[астр.] расширяющаяся вселенная
asymptotically convergent         
  • 1=''x''&thinsp;=&thinsp;3}}, beyond which the error diverges.
SERIES WHICH GIVES AN APPROXIMATION TO A FUNCTION AS THE ARGUMENT TENDS TO SOME POINT
Asymptotic series; Asymptotically convergent; Poincaré expansion; Asymptotic scale; Asymptotic expansions; Poincare expansion; Asymptotic growth

математика

асимптотически сходящаяся

macro         
WIKIMEDIA DISAMBIGUATION PAGE
Macros; Macro-; MACRO; Macro (disambiguation); Macro-level; Macro level; MACRO (disambiguation); Macro-:
macro 1. adj. общий 2. noun comput. макрос
asymptotic growth         
  • 1=''x''&thinsp;=&thinsp;3}}, beyond which the error diverges.
SERIES WHICH GIVES AN APPROXIMATION TO A FUNCTION AS THE ARGUMENT TENDS TO SOME POINT
Asymptotic series; Asymptotically convergent; Poincaré expansion; Asymptotic scale; Asymptotic expansions; Poincare expansion; Asymptotic growth

математика

асимптотический рост

asymptotic series         
  • 1=''x''&thinsp;=&thinsp;3}}, beyond which the error diverges.
SERIES WHICH GIVES AN APPROXIMATION TO A FUNCTION AS THE ARGUMENT TENDS TO SOME POINT
Asymptotic series; Asymptotically convergent; Poincaré expansion; Asymptotic scale; Asymptotic expansions; Poincare expansion; Asymptotic growth

математика

асимптотический ряд

macro-         
WIKIMEDIA DISAMBIGUATION PAGE
Macros; Macro-; MACRO; Macro (disambiguation); Macro-level; Macro level; MACRO (disambiguation); Macro-:
macro- pref. в сложных словах означает большой; необыкновенно большого размера; длинный

Определение

macro
A name (possibly followed by a formal argument list) that is equated to a text or symbolic expression to which it is to be expanded (possibly with the substitution of {actual arguments}) by a macro expander. The term "macro" originated in early assemblers, which encouraged the use of macros as a structuring and information-hiding device. During the early 1970s, macro assemblers became ubiquitous, and sometimes quite as powerful and expensive as HLLs, only to fall from favour as improving compiler technology marginalised assembly language programming (see languages of choice). Nowadays the term is most often used in connection with the C preprocessor, Lisp, or one of several special-purpose languages built around a macro-expansion facility (such as TeX or Unix's troff suite). Indeed, the meaning has drifted enough that the collective "macros" is now sometimes used for code in any special-purpose application control language (whether or not the language is actually translated by text expansion), and for macro-like entities such as the "keyboard macros" supported in some text editors (and PC TSRs or Macintosh INIT/CDEV keyboard enhancers). (1994-12-06)

Википедия

Macro (computer science)

In computer programming, a macro (short for "macro instruction"; from Greek μακρο- 'long, large') is a rule or pattern that specifies how a certain input should be mapped to a replacement output. Applying a macro to an input is known as macro expansion. The input and output may be a sequence of lexical tokens or characters, or a syntax tree. Character macros are supported in software applications to make it easy to invoke common command sequences. Token and tree macros are supported in some programming languages to enable code reuse or to extend the language, sometimes for domain-specific languages.

Macros are used to make a sequence of computing instructions available to the programmer as a single program statement, making the programming task less tedious and less error-prone. (Thus, they are called "macros" because a "big" block of code can be expanded from a "small" sequence of characters.) Macros often allow positional or keyword parameters that dictate what the conditional assembler program generates and have been used to create entire programs or program suites according to such variables as operating system, platform or other factors. The term derives from "macro instruction", and such expansions were originally used in generating assembly language code.

Как переводится macro expansion на Русский язык